home *** CD-ROM | disk | FTP | other *** search
/ PC Plus SuperCD (UK) 1997 May / PC Plus Super CD Issue 127 (May 1997).iso / delphi2 / delphite.exe / data.z / AUTOPROJ.DPR < prev    next >
Encoding:
Text File  |  1996-08-12  |  226 b   |  16 lines

  1. program AutoProj;
  2.  
  3. uses
  4.   OleAuto,
  5.   Forms,
  6.   Main in 'Main.pas' {Form1},
  7.   MyAuto in 'myauto.pas';
  8.  
  9. {$R *.RES}
  10.  
  11. begin
  12.   Application.Initialize;
  13.   Application.CreateForm(TForm1, Form1);
  14.   Application.Run;
  15. end.
  16.